1   //==============================================================================
2   // file :       CommonClass.java
3   // project:     East Networks News System
4   //
5   // last change: date:       $Date: 2003/09/10 09:28:36 $
6   //              by:         $Author: bitiboy $
7   //              revision:   $Revision: 1.1 $
8   //------------------------------------------------------------------------------
9   // copyright:   GNU GPL Software License (see class documentation)
10  //==============================================================================
11  package net.eastol.news.jdo.bean;
12  
13  
14  /*
15   * $Id: CommonClass.java,v 1.1 2003/09/10 09:28:36 bitiboy Exp $
16   *
17   * Copyright 2003 Acai Software All Rights Reserved.
18   *
19   * This file CommonClass.java is part of the East Networks News System.
20  
21   * The East Networks News System is free software; you can redistribute it and/or modify
22   * it under the terms of the GNU General Public License as published by
23   * the Free Software Foundation; either version 2 of the License, or
24   * (at your option) any later version.
25  
26   * East Networks News System is distributed in the hope that it will be useful,
27   * but WITHOUT ANY WARRANTY; without even the implied warranty of
28   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29   * GNU General Public License for more details.
30  
31   * You should have received a copy of the GNU General Public License
32   * along with the East Networks News System; if not, write to the Free Software
33   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
34  
35   * http://www.justhis.com http://ejb.cn
36   * CONTACT: email = webmaster@justhis.com superaxis@sohu.com
37   */
38  import java.util.Date;
39  
40  
41  /***
42   * TODO  DOCUMENT
43   *
44   * @author <a href="http://blog.ejb.cn">acai</a>
45   * @version $Revision $
46   */
47  public interface CommonClass {
48      //~ Methods ----------------------------------------------------------------
49  
50      /***
51       * @param i
52       */
53      public abstract void setArticleNum(int i);
54  
55      /***
56       * @return TODO
57       */
58      public abstract int getArticleNum();
59  
60      /***
61       * @param string
62       */
63      public abstract void setClassName(String string);
64  
65      /***
66       * @return TODO
67       */
68      public abstract String getClassName();
69  
70      /***
71       * @param string
72       */
73      public abstract void setHeadAd(String string);
74  
75      /***
76       * @return TODO
77       */
78      public abstract String getHeadAd();
79  
80      /***
81       * @param i
82       */
83      public abstract void setImgNewsNum(int i);
84  
85      /***
86       * @return TODO
87       */
88      public abstract int getImgNewsNum();
89  
90      /***
91       * @param date
92       */
93      public abstract void setLastUpdate(Date date);
94  
95      /***
96       * @return TODO
97       */
98      public abstract Date getLastUpdate();
99  
100     /***
101      * @param i
102      */
103     public abstract void setListStyle(int i);
104 
105     /***
106      * @return TODO
107      */
108     public abstract int getListStyle();
109 
110     /***
111      * @param string
112      */
113     public abstract void setLogo(String string);
114 
115     /***
116      * @return TODO
117      */
118     public abstract String getLogo();
119 
120     /***
121      * @param string
122      */
123     public abstract void setNewsAd(String string);
124 
125     /***
126      * @return TODO
127      */
128     public abstract String getNewsAd();
129 
130     /***
131      * @param i
132      */
133     public abstract void setNewsClassId(long i);
134 
135     /***
136      * @return TODO
137      */
138     public abstract long getNewsClassId();
139 
140     /***
141      * @param i
142      */
143     public abstract void setOrderId(int i);
144 
145     /***
146      * @return TODO
147      */
148     public abstract int getOrderId();
149 
150     /***
151      * @param i
152      */
153     public abstract void setStyleId(int i);
154 
155     /***
156      * @return TODO
157      */
158     public abstract int getStyleId();
159 
160     /***
161      * @param i
162      */
163     public abstract void setTopicNum(int i);
164 
165     /***
166      * @return TODO
167      */
168     public abstract int getTopicNum();
169 }
170 
171 
172 /*
173  * $Log: CommonClass.java,v $
174  * Revision 1.1  2003/09/10 09:28:36  bitiboy
175  * *** empty log message ***
176  *
177  *
178 */
This page was automatically generated by Maven